home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…ry 5: (Reseller Edition) / Apple Reference & Presentations Library 5.0 (Reseller Edition).iso / 5-Fonts & Software / HyperCard 1.2.5 / Help Stacks / Help / card_87269.txt < prev    next >
Text File  |  1987-11-25  |  4KB  |  158 lines

  1. -- card: 87269 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4507
  5. -- name: 
  6.  
  7.  
  8. -- part 2 (button)
  9. -- low flags: 00
  10. -- high flags: 8003
  11. -- rect: left=349 top=175 right=197 bottom=493
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Show your stuff
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   show card window at 0,0
  23.   show msg at 31,66
  24.   show pattern window at 50,200
  25.   put the id of card button "show your stuff" into cardID
  26.   set the name of card button id cardID to "Click mouse to stop."
  27.   repeat until the mouse is down
  28.     show card button id cardID at the mouseh, the mousev
  29.   end repeat
  30.   set the name of card button id cardID to "Show your stuff"
  31.   show card button id cardID at 392,184
  32. end mouseUp
  33.  
  34.  
  35.  
  36. -- part 4 (field)
  37. -- low flags: 81
  38. -- high flags: 2004
  39. -- rect: left=308 top=51 right=153 bottom=483
  40. -- title width / last selected line: 0
  41. -- icon id / first selected line: 0 / 0
  42. -- text alignment: 0
  43. -- font id: 2
  44. -- text size: 10
  45. -- style flags: 0
  46. -- line height: 13
  47. -- part name: 
  48. ----- HyperTalk script -----
  49. on mouseUp
  50.   hide card field 1
  51. end mouseUp
  52.  
  53.  
  54. -- part 6 (button)
  55. -- low flags: 00
  56. -- high flags: 0000
  57. -- rect: left=394 top=243 right=261 bottom=414
  58. -- title width / last selected line: 0
  59. -- icon id / first selected line: 0 / 0
  60. -- text alignment: 1
  61. -- font id: 0
  62. -- text size: 12
  63. -- style flags: 0
  64. -- line height: 16
  65. -- part name: 
  66. ----- HyperTalk script -----
  67. on mouseUp
  68.   if visible of card field 1 then hide card field 1
  69.   else show card field 1
  70. end mouseUp
  71.  
  72.  
  73.  
  74. -- part 7 (button)
  75. -- low flags: 00
  76. -- high flags: 0000
  77. -- rect: left=297 top=99 right=117 bottom=317
  78. -- title width / last selected line: 0
  79. -- icon id / first selected line: 0 / 0
  80. -- text alignment: 1
  81. -- font id: 0
  82. -- text size: 12
  83. -- style flags: 0
  84. -- line height: 16
  85. -- part name: 
  86. ----- HyperTalk script -----
  87. on mouseUp
  88.   if visible of card field 2 then hide card field 2
  89.   else show card field 2
  90. end mouseUp
  91.  
  92.  
  93.  
  94.  
  95. -- part 13 (field)
  96. -- low flags: 81
  97. -- high flags: 2004
  98. -- rect: left=206 top=122 right=314 bottom=450
  99. -- title width / last selected line: 0
  100. -- icon id / first selected line: 0 / 0
  101. -- text alignment: 0
  102. -- font id: 2
  103. -- text size: 10
  104. -- style flags: 0
  105. -- line height: 13
  106. -- part name: 
  107. ----- HyperTalk script -----
  108. on mouseUp
  109.   hide card field 2
  110. end mouseUp
  111.  
  112.  
  113. -- part contents for background part 1
  114. ----- text -----
  115. Show menuBar 
  116. show card window [at h,v]* 
  117. show pattern window [at h,v]   
  118. Show tool window [at h,v]  
  119. show message window [at h,v]   
  120. show all cards 
  121. Show card button ID 2 [at h,v]
  122. Show field <name> [at h, v] 
  123.  
  124. Puts the specified window, field, or button at any horizontal or vertical location you specify.*  
  125.  
  126. -- part contents for background part 2
  127. ----- text -----
  128. Show
  129.  
  130. -- part contents for background part 44
  131. ----- text -----
  132. Form
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141. What it does
  142.  
  143.  
  144.  
  145. -- part contents for background part 43
  146. ----- text -----
  147. 337,122
  148.  
  149. -- part contents for card part 4
  150. ----- text -----
  151. H and V are the horizontal and vertical screen coordinates.  Show card window uses absolute coordinates; the others are relative to the position of the card window.  
  152.  
  153. -- part contents for card part 13
  154. ----- text -----
  155. When you want to specify a location on the screen, you specify two numbers‚Äîrepresented by "h" and "v".  These are the horizontal distance from the left 
  156. (h) and the vertical distance from the top (v).  The object appears centered at the location you specify.  
  157.  
  158. A general method to get numbers to use for "h" and "v" is to place the pointer anywhere on the screen, type "the mouseLoc" into the Message box, and press the Return key.